nova-bar-metrics.js ➔ ???   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 5
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
import BarChartMetric from './components/BarChartMetric'
2
import BaseBarChartMetric from './components/Base/BarChartMetric'
3
4
Nova.booting((Vue, router) => {
0 ignored issues
show
Unused Code introduced by
The parameter router is not used and could be removed.

This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.

Loading history...
Bug introduced by
The variable Nova seems to be never declared. If this is a global, consider adding a /** global: Nova */ comment.

This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.

To learn more about declaring variables in Javascript, see the MDN.

Loading history...
5
    Vue.config.devtools = true
6
    Vue.component('base-bar-chart-metric', BaseBarChartMetric)
7
    Vue.component('bar-chart-metric', BarChartMetric)
8
})
9